f9fc75d43276a5a3e9ee548eaf90f65465d5bb06,src/main/ceylon/io/vertx/ceylon/core/http/WebSocket.java,WebSocket,textHandlerID,#,60

Before Change


  @DocAnnotation$annotation$(description = "todo")
  @TypeInfo("ceylon.language::String")
  public ceylon.language.String textHandlerID() {
    ceylon.language.String ret = new ceylon.language.String(delegate.textHandlerID());
    return ret;
  }

After Change


  @DocAnnotation$annotation$(description = "todo")
  @TypeInfo("ceylon.language::String")
  public ceylon.language.String textHandlerID() {
    ceylon.language.String ret = io.vertx.lang.ceylon.ToCeylon.String.convert(delegate.textHandlerID());
    return ret;
  }